*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
   /* background: linear-gradient( #0c288e, #c114be);*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background: #202c55;
}
header{
    background: #202c55;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: aliceblue;
    padding: 10px 10px 10px;
    width: 100%;
    height: 5px;
}

header .nav{
    display: flex;
    flex-direction: row;
    color: white;
}

header .nav li{
    padding-right: 10px;
    list-style: none;
    color:rgb(168, 78, 23);
}

header .nav li a{
    text-decoration: none;
    color: rgb(168, 78, 23);
}

#active{
/*active link color*/
color: aliceblue;
}

header .nav li a:active,
header .nav li a:hover{
    background:linear-gradient(45deg, #0c288e, #c114be);
    color:aqua;
}
/*main style section */
main{
    width: 100%;
    color: white;  
}
.content{
    background-image: url("assets\images\anime2.jpg"); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
}
.description{
    margin-left: 10px;
    margin-top: 30px;
}
.description p{
    padding-top: 20px;
    width: 60%;
    animation:3s linear 2s running slideRight;
}
.email{
    margin-left: 10px;
    margin-top: 30px;
    border: 3px solid #1f906c;
    width: 200px;
    text-align: center;
    border-radius: 5px;
    background: #2e53b2;
}
.email a{
    text-decoration: none;
    color: #efefef;
}
.email a:hover{
    padding-left: 3px;
    font-family: 'Courier New', Courier, monospace;
    color: aqua;
}
.email:hover{
    border:3px solid aqua;
    width:250px;
    height:35px;
    color: aqua;
}
.socialmedia{
    margin-top: 50px;
    margin-bottom: 40px;
    margin-left: 15px;
    display: flex;
    flex-direction: row;
}
.socialmedia .icon a img{
    height: 40px;
    width: 40px;
    padding-right: 15px;

}

.socialmedia .icon a img:hover{
    height: 50px;
    width: 50px;
    transform: translateY(5px);
}

.feedsbar{
    display: flex;
    flex-direction: row;
}

.feedsbar li{
    list-style: none;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 30px;
    font-weight: 500;
    font-size: 20px;   
}

.feedsbar li a{
    text-decoration: none;
    color:rgb(168, 78, 23);
    font-family: monospace;
}
.pics{
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
}
.pics img{
    height: 250px;
    width: 250px;
    border-radius: 5px;
    margin:2px 2px 2px 2px ;
}

.pics img:hover{
    height:300px;
    width: 00px;
    margin:10px 10px 10px 10px;
}

.media{
    width: 100%;
    background-color: #202c55;
}


.feeds{
    height: 100vh;
    width: 90%;
    margin: 10px 10px 10px 10px;
    border-radius: 10px;
    display: flex;
    flex-wrap:wrap;
}

.videoFeed{
    border: 2px solid #0c288e;
    border-radius: 4px;
    margin: 3px 3px 10px 3px;
    height:250px;
}

.videoFeed video{
    border-radius: 5px;
    height: 200px;
    width:100%;
}





/*animation keyframes */

@keyframes slideRight {
    0%{
        transform: translateX(-1000px);
    }

    100%{
        transform: translateX(0px);
    }
    
}

@media screen and [min-width = "350px"] {
    
    .videoFeed{
        width: 100%;
        height: auto;
    }

    
} 